home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zpath1.c < prev    next >
C/C++ Source or Header  |  1997-01-12  |  6KB  |  247 lines

  1. /* Copyright (C) 1989, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zpath1.c */
  20. /* PostScript Level 1 additional path operators */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "oper.h"
  24. #include "errors.h"
  25. #include "estack.h"    /* for pathforall */
  26. #include "ialloc.h"
  27. #include "igstate.h"
  28. #include "gsstruct.h"
  29. #include "gspath.h"
  30. #include "store.h"
  31.  
  32. /* Forward references */
  33. private int near common_arc(P2(os_ptr,
  34.   int (*)(P6(gs_state *, floatp, floatp, floatp, floatp, floatp))));
  35. private int near common_arct(P2(os_ptr, float *));
  36.  
  37. /* <x> <y> <r> <ang1> <ang2> arc - */
  38. int
  39. zarc(os_ptr op)
  40. {    return common_arc(op, gs_arc);
  41. }
  42.  
  43. /* <x> <y> <r> <ang1> <ang2> arcn - */
  44. int
  45. zarcn(os_ptr op)
  46. {    return common_arc(op, gs_arcn);
  47. }
  48.  
  49. /* Common code for arc[n] */
  50. private int near
  51. common_arc(os_ptr op,
  52.   int (*aproc)(P6(gs_state *, floatp, floatp, floatp, floatp, floatp)))
  53. {    float xyra[5];            /* x, y, r, ang1, ang2 */
  54.     int code;
  55.     if ( (code = num_params(op, 5, xyra)) < 0 ) return code;
  56.     code = (*aproc)(igs, xyra[0], xyra[1], xyra[2], xyra[3], xyra[4]);
  57.     if ( code >= 0 ) pop(5);
  58.     return code;
  59. }
  60.  
  61. /* <x1> <y1> <x2> <y2> <r> arct - */
  62. int
  63. zarct(register os_ptr op)
  64. {    int code = common_arct(op, (float *)0);
  65.     if ( code < 0 ) return code;
  66.     pop(5);
  67.     return 0;
  68. }
  69.  
  70. /* <x1> <y1> <x2> <y2> <r> arcto <xt1> <yt1> <xt2> <yt2> */
  71. private int
  72. zarcto(register os_ptr op)
  73. {    float tanxy[4];            /* xt1, yt1, xt2, yt2 */
  74.     int code = common_arct(op, tanxy);
  75.     if ( code < 0 ) return code;
  76.     make_real(op - 4, tanxy[0]);
  77.     make_real(op - 3, tanxy[1]);
  78.     make_real(op - 2, tanxy[2]);
  79.     make_real(op - 1, tanxy[3]);
  80.     pop(1);
  81.     return 0;
  82. }
  83.  
  84. /* Common code for arct[o] */
  85. private int near
  86. common_arct(os_ptr op, float *tanxy)
  87. {    float args[5];            /* x1, y1, x2, y2, r */
  88.     int code;
  89.     if ( (code = num_params(op, 5, args)) < 0 ) return code;
  90.     return gs_arcto(igs, args[0], args[1], args[2], args[3], args[4], tanxy);
  91. }
  92.  
  93. /* - .dashpath - */
  94. private int
  95. zdashpath(register os_ptr op)
  96. {    return gs_dashpath(igs);
  97. }
  98.  
  99. /* - flattenpath - */
  100. private int
  101. zflattenpath(register os_ptr op)
  102. {    return gs_flattenpath(igs);
  103. }
  104.  
  105. /* - reversepath - */
  106. private int
  107. zreversepath(register os_ptr op)
  108. {    return gs_reversepath(igs);
  109. }
  110.  
  111. /* - strokepath - */
  112. private int
  113. zstrokepath(register os_ptr op)
  114. {    return gs_strokepath(igs);
  115. }
  116.  
  117. /* - clippath - */
  118. private int
  119. zclippath(register os_ptr op)
  120. {    return gs_clippath(igs);
  121. }
  122.  
  123. /* <bool> .pathbbox <llx> <lly> <urx> <ury> */
  124. private int
  125. zpathbbox(register os_ptr op)
  126. {    gs_rect box;
  127.     int code;
  128.  
  129.     check_type(*op, t_boolean);
  130.     code = gs_upathbbox(igs, &box, op->value.boolval);
  131.     if ( code < 0 )
  132.       return code;
  133.     push(3);
  134.     make_real(op - 3, box.p.x);
  135.     make_real(op - 2, box.p.y);
  136.     make_real(op - 1, box.q.x);
  137.     make_real(op, box.q.y);
  138.     return 0;
  139. }
  140.  
  141. /* <moveproc> <lineproc> <curveproc> <closeproc> pathforall - */
  142. private int path_continue(P1(os_ptr));
  143. private int path_cleanup(P1(os_ptr));
  144. private int
  145. zpathforall(register os_ptr op)
  146. {    gs_path_enum *penum;
  147.     int code;
  148.  
  149.     check_proc(op[-3]);
  150.     check_proc(op[-2]);
  151.     check_proc(op[-1]);
  152.     check_proc(*op);
  153.     check_estack(8);
  154.     if ( (penum = gs_path_enum_alloc(imemory, "pathforall")) == 0 )
  155.       return_error(e_VMerror);
  156.     code = gs_path_enum_init(penum, igs);
  157.     if ( code < 0 )
  158.     {    ifree_object(penum, "path_cleanup");
  159.         return code;
  160.     }
  161.     /* Push a mark, the four procedures, and the path enumerator. */
  162.     push_mark_estack(es_for, path_cleanup);    /* iterator */
  163.     memcpy(esp + 1, op - 3, 4 * sizeof(ref));    /* 4 procs */
  164.     esp += 5;
  165.     make_istruct(esp, 0, penum);
  166.     push_op_estack(path_continue);
  167.     pop(4);  op -= 4;
  168.     return o_push_estack;
  169. }
  170. /* Continuation procedure for pathforall */
  171. private void pf_push(P3(gs_point *, int, os_ptr));
  172. private int
  173. path_continue(register os_ptr op)
  174. {    gs_path_enum *penum = r_ptr(esp, gs_path_enum);
  175.     gs_point ppts[3];
  176.     int code;
  177.     /* Make sure we have room on the o-stack for the worst case */
  178.     /* before we enumerate the next path element. */
  179.     check_ostack(6);    /* 3 points for curveto */
  180.     code = gs_path_enum_next(penum, ppts);
  181.     switch ( code )
  182.       {
  183.     case 0:            /* all done */
  184.         { esp -= 6;
  185.           path_cleanup(op);
  186.           return o_pop_estack;
  187.         }
  188.     default:        /* error */
  189.         return code;
  190.     case gs_pe_moveto:
  191.         esp[2] = esp[-4];            /* moveto proc */
  192.         pf_push(ppts, 1, op);
  193.         break;
  194.     case gs_pe_lineto:
  195.         esp[2] = esp[-3];            /* lineto proc */
  196.         pf_push(ppts, 1, op);
  197.         break;
  198.     case gs_pe_curveto:
  199.         esp[2] = esp[-2];            /* curveto proc */
  200.         pf_push(ppts, 3, op);
  201.         break;
  202.     case gs_pe_closepath:
  203.         esp[2] = esp[-1];            /* closepath proc */
  204.         break;
  205.       }
  206.     push_op_estack(path_continue);
  207.     ++esp;        /* include pushed procedure */
  208.     return o_push_estack;
  209. }
  210. /* Internal procedure to push one or more points */
  211. private void
  212. pf_push(gs_point *ppts, int n, os_ptr op)
  213. {    while ( n-- )
  214.       { op += 2;
  215.         make_real(op - 1, ppts->x);
  216.         make_real(op, ppts->y);
  217.         ppts++;
  218.       }
  219.     osp = op;
  220. }
  221. /* Clean up after a pathforall */
  222. private int
  223. path_cleanup(os_ptr op)
  224. {    gs_path_enum *penum = r_ptr(esp + 6, gs_path_enum);
  225.     gs_path_enum_cleanup(penum);
  226.     ifree_object(penum, "path_cleanup");
  227.     return 0;
  228. }
  229.  
  230. /* ------ Initialization procedure ------ */
  231.  
  232. BEGIN_OP_DEFS(zpath1_op_defs) {
  233.     {"5arc", zarc},
  234.     {"5arcn", zarcn},
  235.     {"5arct", zarct},
  236.     {"5arcto", zarcto},
  237.     {"0clippath", zclippath},
  238.     {"0.dashpath", zdashpath},
  239.     {"0flattenpath", zflattenpath},
  240.     {"4pathforall", zpathforall},
  241.     {"0reversepath", zreversepath},
  242.     {"0strokepath", zstrokepath},
  243.     {"0.pathbbox", zpathbbox},
  244.         /* Internal operators */
  245.     {"0%path_continue", path_continue},
  246. END_OP_DEFS(0) }
  247.